#include "..\CookHeader.h"

int SIZE = 5;
Array <string> stack;
int top = -1;

bool isStackEmpty() {
	if (top == -1)
		return true;
	else
		return false;
}

int main() {
	for (int i = 0; i < SIZE; i++) //  ʱȭ (SIZE ŭ   )
		stack.push_back("None");

	print("  -->");
	println((isStackEmpty() ? "true" : "false"));  // 0:false, 1:true
}